home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 April / Macworld (1999-04).dmg / Cool Specials / Al Morale Demo / Al's Stuff / D200.DCR / 00044_Up one frame.ls < prev    next >
Encoding:
Text File  |  1999-02-16  |  672 b   |  24 lines

  1. on mouseDown
  2.   buttonClick3()
  3. end
  4.  
  5. on mouseUp
  6.   global gUserName
  7.   set NameCheck to the text of member "UserName"
  8.   if NameCheck = "Type your name here" then
  9.     alert("Please personalize your copy of Al Morale by entering your name.")
  10.     go(the frame)
  11.   else
  12.     if length(field "UserName") = 0 then
  13.       alert("Please personalize your copy of Al Morale by entering your name.")
  14.       go(the frame)
  15.     else
  16.       set the editable of member "LOCKname" to 1
  17.       set gUserName to the text of member "UserName"
  18.       put the text of member "UserName" into field "LOCKname"
  19.       set the editable of member "LOCKname" to 0
  20.       go(the frame + 1)
  21.     end if
  22.   end if
  23. end
  24.